/* INPUTS DE EDIÇÃO */
.input-hacker-titulo {
    background: none;
    border: none;
    border-left: 2px solid #00ffcc;
    color: #00ffcc;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;
    padding-left: 15px;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.textarea-hacker-desc {
    background: #050505;
    border: 1px dashed #222;
    color: #666;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    width: 100%;
    min-height: 60px;
    margin-top: 10px;
    padding: 10px;
    resize: vertical;
    outline: none;
    transition: 0.3s;
}
.textarea-hacker-desc:focus {
    border-color: #00ffcc;
    color: #aaa;
}